home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / programm.ing / dlibsrc.arc / STRICMP.C < prev    next >
Encoding:
Text File  |  1988-10-05  |  201 b   |  11 lines

  1. int stricmp(str1, str2)
  2.     register char *str1, *str2;
  3.     {
  4.     register char c1, c2;
  5.  
  6.     while((c1 = tolower(*str1++)) == (c2 = tolower(*str2++)))
  7.         if(c1 == '\0')
  8.             return(0);
  9.     return(c1 - c2);
  10.     }
  11.